@media print {
    /*Button nicht mitdrucken*/
    button 
    {
        display: none;
    }
    /*Fußleiste nciht mitdrucken*/
    footer 
    {
        display: none;
    }
      /*Link in schwarz Drucken*/
    a
    {
        color: black;
        -webkit-print-color-adjust: exact; 
        print-color-adjust: exact;
        text-decoration: none;
        -webkit-text-decoration: exact;
    }

    /*Lienen Deklarieren */
    .hrgray
    {
        height: 2px;
        background-color: gray;
    }
    .hrblue
    {
        margin: auto;
        border: solid blue 1px;
        height: 1px;
    }
    .noshowp
    {
        display: none;  
    }
    /*Text in Blockschrift*/
    .left
    {
        width: 100%;
        margin: 1em auto;
        text-align: left;
        font-family: Calibri;
    }
    .blocked50 
    {
        width: 80%;
        margin: 1em auto;
        text-align: justify;
        text-align-last: none;
        font-family: Calibri;
    }
    .center100
    {
        width: 100%;
        margin: 1em auto;
        text-align: center;
        font-family: Calibri;
    }  
    .grayscale 
    {
        -webkit-filter: grayscale;
        filter: grayscale;
    }
    
}